home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000170_news@columbia.edu_Tue Jun 20 11:39:56 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA16582
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 20 Jun 1995 22:26:22 -0400
  3. Received: by apakabar.cc.columbia.edu id AA10193
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 20 Jun 1995 22:26:21 -0400
  5. Path: news.columbia.edu!panix!news.mathworks.com!gatech!howland.reston.ans.net!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: KEA keyboards
  9. Message-Id: <1995Jun20.173956.54405@cc.usu.edu>
  10. Date: 20 Jun 95 17:39:56 MDT
  11. References: <3s775e$a1q@ccnet.ccnet.com>
  12. Organization: Utah State University
  13. Lines: 29
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3s775e$a1q@ccnet.ccnet.com>, Greg Bernard <gbernard@dbc.com> writes:
  17. > Does anybody have, or has anybody worked on a keyboard initialization file for the KEA 
  18. > keyboards?  We use the PowerStation keyboards here at work to do terminal emulation to our VAX, 
  19. > and they work really well, so I wanted to map the keys in the Kermit emulator.  (The 
  20. > KEA keyboards come with a driver to work under MS/Windows.)  However, I have not been able to 
  21. > figure out all the key codes, especiall the PF1-PF4/F17-F20 keys.
  22. ----------------
  23.     I haven't used such a keyboard but the key definition process
  24. should be straight forward and quick. Use Kermit command SET KEY and
  25. press ENTER at that point. The command then prompts for the key to
  26. be define (asks you to press it). The key code is shown together with
  27. any current definition. The second prompt is for a new definition, if
  28. any, and you would then type  \KdecF18 or whatever. Make a note of
  29. the key code and your definition.
  30.     To automate this first do the by-hand approach above. Then
  31. edit a convenient Kermit TAKE file and write the definitions each
  32. on one line, such as
  33. set key \4425 \kdecPrev      ; Enhanced kbd grey Page Up
  34. set key \4433 \kdecNext   ; Enhanced kbd grey Page Down
  35. set key \4434 \kdecInsert ; Enhanced kbd grey Insert
  36. set key \4435 \kdecRemove ; Enhanced kbd grey Delete
  37.  
  38.     To see which keyboard verb definitions are available either
  39. read the manual or/and press the "?" key in response to the definition
  40. prompt.
  41.     To undefine a key enter an empty definition:  set key \4425
  42. The key then represents itself (um, sends ASCII if it generates an ASCII
  43. character, else sends nothing and beeps at you when touched).
  44.     Joe D.